home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / HTML / QuickForm / Action.php next >
PHP Script  |  2004-10-01  |  2KB  |  48 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | PHP version 4.0                                                      |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2003 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Alexey Borzov <avb@php.net>                                 |
  17. // |          Bertrand Mansion <bmansion@mamasam.com>                     |
  18. // +----------------------------------------------------------------------+
  19. //
  20. // $Id: Action.php,v 1.1 2003/08/29 12:19:41 avb Exp $
  21.  
  22. /**
  23.  * Class representing an action to perform on HTTP request. The Controller
  24.  * will select the appropriate Action to call on the request and call its 
  25.  * perform() method. The subclasses of this class should implement all the
  26.  * necessary business logic.
  27.  * 
  28.  * @author  Alexey Borzov <avb@php.net>
  29.  * @package HTML_QuickForm_Controller
  30.  * @version $Revision: 1.1 $
  31.  */
  32. class HTML_QuickForm_Action
  33. {
  34.    /**
  35.     * Processes the request. This method should be overriden by child classes to 
  36.     * provide the necessary logic.
  37.     * 
  38.     * @access public
  39.     * @param  object HTML_QuickForm_Page    the current form-page 
  40.     * @param  string    Current action name, as one Action object can serve multiple actions
  41.     */
  42.     function perform(&$page, $actionName)
  43.     {
  44.     }
  45. }
  46.  
  47. ?>
  48.